home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 52 / Amiga Format AFCD52 (Issue 136, May 2000).iso / -serious- / hardware / ahd12 / ahd / asmsupp.i < prev    next >
Text File  |  2000-02-28  |  509b  |  21 lines

  1. CLEAR   MACRO           ; quick way to clear a D register on 68000
  2.         MOVEQ   #0,\1
  3.         ENDM
  4.  
  5. EVEN    MACRO           ; word align code stream
  6.         DS.W    0
  7.         ENDM
  8.  
  9. LINKSYS MACRO           ; link to a library without having to see a _LVO
  10.         LINKLIB _LVO\1,\2
  11.         ENDM
  12.  
  13. CALLSYS MACRO           ; call a library without having to see _LVO
  14.         CALLLIB _LVO\1
  15.         ENDM
  16.  
  17. XLIB    MACRO           ; define a library reference without the _LVO
  18.         XREF    _LVO\1
  19.         ENDM
  20.  
  21.